home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / xml4j.jar / com / ibm / xml / dom / DocumentFragmentImpl.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-08-30  |  840 b   |  28 lines

  1. package com.ibm.xml.dom;
  2.  
  3. import org.w3c.dom.DOMException;
  4. import org.w3c.dom.DocumentFragment;
  5.  
  6. public class DocumentFragmentImpl extends NodeImpl implements DocumentFragment {
  7.    static final long serialVersionUID = -7596449967279236746L;
  8.  
  9.    public DocumentFragmentImpl(DocumentImpl var1) {
  10.       super(var1, (String)null, (String)null);
  11.    }
  12.  
  13.    public DocumentFragmentImpl() {
  14.    }
  15.  
  16.    public short getNodeType() {
  17.       return 11;
  18.    }
  19.  
  20.    public String getNodeName() {
  21.       return "#document-fragment";
  22.    }
  23.  
  24.    public void setNodeValue(String var1) throws DOMException {
  25.       throw new DOMExceptionImpl((short)7, (String)null);
  26.    }
  27. }
  28.